home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / var / lib / dpkg / info / toshset.preinst < prev    next >
Text File  |  2009-06-23  |  341b  |  15 lines

  1. #!/bin/sh 
  2. set -e
  3.  
  4. if [ "$1" = install ] || [ "$1" = upgrade ]; then
  5.     if [ -e "/etc/modprobe.d/toshset" ]; then
  6.         if [ "`md5sum \"/etc/modprobe.d/toshset\" | sed -e \"s/ .*//\"`" = \
  7.             "`dpkg-query -W -f='${Conffiles}' toshset | sed -n -e \"\\\\' /etc/modprobe.d/toshset's/.* //p\"`" ]
  8.         then
  9.             rm -f /etc/modprobe.d/toshset
  10.         fi
  11.     fi
  12. fi
  13.  
  14.  
  15.